home *** CD-ROM | disk | FTP | other *** search
/ 130 MIDI Tool Box / 130 MIDI Tool Box.iso / mpu401 / mpu. < prev    next >
Text File  |  1986-11-02  |  1KB  |  50 lines

  1. # Copyright (C) 1986 by M. J. Shannon, Jr.
  2. # Permission to distribute for non-commercial uses granted as long as this
  3. # notice is retained.  Violators will be prosecuted.
  4.  
  5. .SUFFIXES:    .c .obj .lib
  6.  
  7. OBJS=mpudget.obj mpudrr.obj mpudsr.obj mpuget.obj mpuid.obj mpuput.obj\
  8.     mpuread.obj mpusexcl.obj cpu.obj dxswremt.obj dxpachng.obj
  9. LCMD=+mpudget +mpudrr +mpudsr +mpuget +mpuid +mpuput +mpuread +mpusexcl +cpu\
  10.     +dxswremt +dxpachng
  11.  
  12. mpudget.obj:    mpudget.c mpu.h
  13.     lc -k2 -ml mpudget
  14.  
  15. mpudrr.obj:    mpudrr.c mpu.h
  16.     lc -k2 -ml mpudrr
  17.  
  18. mpudsr.obj:    mpudsr.c mpu.h
  19.     lc -k2 -ml mpudsr
  20.  
  21. mpuget.obj:    mpuget.c mpu.h
  22.     lc -k2 -ml mpuget
  23.  
  24. mpuid.obj:    mpuid.c mpu.h
  25.     lc -k2 -ml mpuid
  26.  
  27. mpuput.obj:    mpuput.c mpu.h
  28.     lc -k2 -ml mpuput
  29.  
  30. mpuread.obj:    mpuread.c mpu.h
  31.     lc -k2 -ml mpuread
  32.  
  33. mpusexcl.obj:    mpusexcl.c mpu.h
  34.     lc -k2 -ml mpusexcl
  35.  
  36. dxswremt.obj:    dxswremt.c mpu.h
  37.     lc -k2 -ml dxswremt
  38.  
  39. dxpachng.obj:    dxpachng.c mpu.h
  40.     lc -k2 -ml dxpachng
  41.  
  42. cpu.obj:    cpu.asm
  43.     masm cpu,,nul,nul;
  44.  
  45. mpu.lib:    $(OBJS)
  46.     del mpu.lib
  47.     lib mpu.lib $(LCMD),mpu.lst;
  48.     del ..\mpu.lib
  49.     copy mpu.lib ..
  50.